home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH04_3.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  260b  |  25 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    for(index = 1 ; index < 101 ; index = index + 1) {
  6.       if ((index >= 32) && (index <= 39))
  7.          printf("%5d\n", index);
  8.    }
  9. }
  10.  
  11.  
  12.  
  13. /* Result of execution
  14.  
  15.    32
  16.    33
  17.    34
  18.    35
  19.    36
  20.    37
  21.    38
  22.    39
  23.  
  24. */
  25.